GET api/du/{authenticationToken}/{loanKey}
This method will return a DU 3.2 export file for the specified loan.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
authenticationToken |
Current authentication token |
string |
Required |
loanKey |
The loan key string identifying the loan to be exported. |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns an object with one property named "Data". This "Data" object is the DU 3.2 export file as a string.
DUModelName | Description | Type | Additional information |
---|---|---|---|
Data |
This is the import/export data represented as a string. |
string |
None. |
ChannelKey | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Data": "sample string 1", "ChannelKey": "sample string 2" }
application/xml, text/xml
Sample:
<DUModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EpicAPI.Models"> <ChannelKey>sample string 2</ChannelKey> <Data>sample string 1</Data> </DUModel>